home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / rlab / readme.con < prev    next >
Encoding:
Internet Message Format  |  1994-10-23  |  2.4 KB

  1. From: ians@eskimo.com (Ian Searle)
  2. Subject: RLaB Contributor's Form
  3. To: rlab-list@eskimo.com
  4. Date: Sun, 15 May 1994 22:44:48 +0000 (BST)
  5. X-Mailer: ELM [version 2.4 PL22]
  6. Mime-Version: 1.0
  7. Content-Type: text/plain; charset=US-ASCII
  8. Content-Transfer-Encoding: 7bit
  9. Content-Length: 2150      
  10.  
  11.  
  12.     RLaB Contributors Form
  13.  
  14.     If you are developing rfiles that you wish to share with
  15.     others or contribute to the RLaB distribution, please fill out
  16.     this form and mail it to ians@eskimo.com. 
  17.  
  18.     Likewise, before you begin development, it would be good to
  19.     check and see if others are working on the same or similar
  20.     projects. If you want to know what is currently "in-work",
  21.     send mail to ians@eskimo.com and you will receive a copy of
  22.     the contributor's database.
  23.  
  24.     -------------------- Contributor's Form ----------------------
  25.  
  26.     Project Name:
  27.  
  28.     Technical Subject Area:
  29.  
  30.     Application Area(s):
  31.  
  32.     Author's Name:
  33.     Author's e-mail:
  34.  
  35.     Rfile Name(s):
  36.  
  37.     Description:
  38.  
  39.     -------------------- Contributor's Form ----------------------
  40.  
  41.     At the bottom is the "suggested" form for documentation of
  42.     rfiles.  No one will change your work if you do not follow
  43.     this format.
  44.  
  45.     If this form is not adequate, then please send suggestions to
  46.     ians@eskimo.com
  47.  
  48.     Enjoy,
  49.     Ian Searle
  50.     ians@eskimo.com
  51.  
  52. //-------------------------------------------------------------------//
  53.  
  54. // Synopsis:    Band reduction by two-sided unitary transformations.
  55.  
  56. // Syntax:    bandred ( A , KL, KU )
  57.  
  58. // Description:
  59.  
  60. //    bandred(A, KL, KU) is a matrix unitarily equivalent to A with
  61. //    lower bandwidth KL and upper bandwidth KU (i.e. B(i,j) = 0 if
  62. //    i > j+KL or j > i+KU).  The reduction is performed using
  63. //    Householder transformations. If KU is omitted it defaults to
  64. //    KL. 
  65.  
  66. //    Called by randsvd.
  67. //    This is a `standard' reduction.  Cf. reduction to bidiagonal
  68. //    form prior to computing the SVD.  This code is a little
  69. //    wasteful in that it computes certain elements which are
  70. //    immediately set to zero! 
  71. //
  72. //      Reference:
  73. //      G.H. Golub and C.F. Van Loan, Matrix Computations, second edition,
  74. //      Johns Hopkins University Press, Baltimore, Maryland, 1989.
  75. //      Section 5.4.3.
  76.  
  77. //    This file is a translation of bandred.m from version 2.0 of
  78. //    "The Test Matrix Toolbox for Matlab", described in Numerical
  79. //    Analysis Report No. 237, December 1993, by N. J. Higham.
  80.  
  81. // Dependencies
  82.    rfile house
  83.  
  84. //-------------------------------------------------------------------//
  85.  
  86.  
  87.